home *** CD-ROM | disk | FTP | other *** search
- ///////////////////////////////////////////////////////////////////////////////
- //
- // Copyright 1997-2000 Pandemic Studios, Dark Reign II
- //
- // Startup Configuration File
- //
-
- StartupConfig()
- {
- ConfigureMono()
- {
- CreateScratchPanel( 13, "aiarossi", "for a good time call 555-NERF");
- CreateScratchPanel( 0, "apayne", "Here comes the zwagabeast");
- CreateScratchPanel( 22, "jcooke", "fishheads, fishheads, rolly-polly fishheads");
- CreateScratchPanel( 11, "mversluys", "Our Amps go to 11");
- CreateScratchPanel( 10, "gborrud", "I wish I was a coder, they're so cool");
- }
- }
-
- GameConfig()
- {
- ConfigureFileSystem()
- {
- // Setup the default pack extension
- PackExtension(".zwp");
-
- // Setup top level data stream
- ConfigureStream("gamedata")
- {
- AddDir("client");
- AddStream("mods");
- AddStream("savegame");
- AddStream("mission");
- AddStream("world");
- AddStream("side");
- AddStream("search");
- AddResource("packs", "base");
- }
-
- // Make it active
- SetActiveStream("gamedata");
-
- // Meshviewer search path and default model
- SetSub("@meshviewpath", ".");
- SetSub("@meshviewmodel", "engine_pandemic.god");
- }
-
- // Setup localization
- ConfigureMultiLanguage()
- {
- LoadLanguage("English");
- SetLanguage("English");
- }
- }